home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Trading on the Edge
/
Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin
/
pc
/
shared
/
azte_pro
/
makefile.bsd
< prev
next >
Wrap
Makefile
|
1993-06-11
|
549b
|
26 lines
# AZTE makefile for BSD-type systems
#
CC = cc
CFLAGS =
IFLAGS =
ILIB = -lm
all: hi
hi: human_i.o control_id.o rantok.o intro.o
${CC} ${CFLAGS} human_i.o control_id.o rantok.o intro.o -o hi ${ILIB}
control_id.o: define.h control.c inet.c
${CC} -c ${CFLAGS} ${IFLAGS} -DINETBASED -DDISPLAY control.c
mv control.o control_id.o
human_i.o: define.h human.c
${CC} -c ${CFLAGS} ${IFLAGS} -DINETBASED -DDISPLAY human.c
mv human.o human_i.o
rantok.o: rantok.c
${CC} -c ${CFLAGS} rantok.c
intro.o: intro.c define.h
${CC} -c ${CFLAGS} intro.c